"); document.writeln("

*

"); document.writeln(""); document.writeln(""); document.writeln("

"); document.writeln("

*

"); document.writeln("
"); document.writeln(""); document.writeln("

"); document.writeln("

*

"); document.writeln("
"); }

Scrolling Text Script

Below is the script. You should place it just below the <body> tag. This Script will only work with Netscape Navigator 4 or higher. If you are using Netscape Navigtor 4, then you should see the effect on you screen now. The colors of the stars are changeable. Just change the "text" values in the first script to the hex color of you choice. For instance: instead of
document.writeln("<body bgcolor=; text='#C60072'>");
use
document.writeln("<body bgcolor=; text='#FF0000'>");

****If You Can't Get the script to work, drop me a line at [email protected] and I'll see what I can do.****


<script language="JavaScript">
if (navigator.appName=="Netscape" && navigator.appVersion>="4")
{
document.writeln("<layer NAME='a' VISIBILITY='SHOW'>");
document.writeln("<body bgcolor=; text='#C60072'>");
document.writeln("<p>*</p>");
document.writeln("</layer>");

document.writeln("<layer NAME='b' VISIBILITY='SHOW'>");
document.writeln("<body bgcolor=; text='#80FFFF'>");
document.writeln("<p>*</p>");
document.writeln("</layer>");

document.writeln("<layer NAME='c' VISIBILITY='SHOW'>");
document.writeln("<body bgcolor=; text='#8080C0'>");
document.writeln("<p>*</p>");
document.writeln("</layer>");
}
</script>

<script language="JavaScript">
// <!--
//
var userAgent=navigator.appName + " " + navigator.appVersion;
var agentInfo=userAgent.substring(0, 12);
if(agentInfo >= "Netscape 4.0")
{
window.captureEvents(Event.MOUSEMOVE);
// transparent layer
document.a.bgColor = null;
document.b.bgColor = null;
document.c.bgColor = null;
// Logo animation
var yBase = window.innerHeight/5;
var xBase = window.innerWidth/5;
var delay = 10;
var yAmpl = 0;
var yMax = 100;
var step = .2;
var ystep = .5;
var currStep = 100;
var tAmpl=2;
var Xpos = 375;
var Ypos = 225;
var j = 10;
function MoveHandler(evnt)
{
Xpos = evnt.pageX ;
Ypos = evnt.pageY ;
}
window.onMouseMove = MoveHandler;
function animateLogo()
{
yBase = window.innerHeight/3.5;
xBase = window.innerWidth/3.5;
for ( j = 0 ; j < 3 ; j++ )
{
document.layers[j].top = Ypos +
Math.cos((20*Math.sin(currStep/(20+j)))+j*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep +j*25)/10);
document.layers[j].left =Xpos +
Math.sin((20*Math.sin(currStep/20))+j*70)*xBase*(Math.sin(10+currStep/(10+j))+0.2)*Math.cos((currStep +j*25)/10);
}
currStep += step;
setTimeout("animateLogo()", delay) ;
}
animateLogo()
}
// -->
</script>